Trình soạn thảo văn bản đơn giản Trong C# mới

1 namespace Best_Notepad
2 {
3     
partial class Login
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             
this.label1 = new System.Windows.Forms.Label();
32             
this.usernametextBox = new System.Windows.Forms.TextBox();
33             
this.label2 = new System.Windows.Forms.Label();
34             
this.passwordtextBox = new System.Windows.Forms.TextBox();
35             
this.button1 = new System.Windows.Forms.Button();
36             
this.button2 = new System.Windows.Forms.Button();
37             
this.label3 = new System.Windows.Forms.Label();
38             
this.SuspendLayout();
39             
//
40             
// label1
41             
//
42             
this.label1.AutoSize = true;
43             
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
44             
this.label1.Location = new System.Drawing.Point(11, 40);
45             
this.label1.Name = "label1";
46             
this.label1.Size = new System.Drawing.Size(83, 20);
47             
this.label1.TabIndex = 0;
48             
this.label1.Text = "Username";
49             
this.label1.Click += new System.EventHandler(this.label1_Click);
50             
//
51             
// usernametextBox
52             
//
53             
this.usernametextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
54             
this.usernametextBox.Location = new System.Drawing.Point(94, 40);
55             
this.usernametextBox.Name = "usernametextBox";
56             
this.usernametextBox.Size = new System.Drawing.Size(217, 26);
57             
this.usernametextBox.TabIndex = 0;
58             
this.usernametextBox.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
59             
//
60             
// label2
61             
//
62             
this.label2.AutoSize = true;
63             
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
64             
this.label2.Location = new System.Drawing.Point(11, 77);
65             
this.label2.Name = "label2";
66             
this.label2.Size = new System.Drawing.Size(78, 20);
67             
this.label2.TabIndex = 0;
68             
this.label2.Text = "Password";
69             
this.label2.Click += new System.EventHandler(this.label2_Click);
70             
//
71             
// passwordtextBox
72             
//
73             
this.passwordtextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
74             
this.passwordtextBox.Location = new System.Drawing.Point(94, 77);
75             
this.passwordtextBox.Name = "passwordtextBox";
76             
this.passwordtextBox.PasswordChar = '*';
77             
this.passwordtextBox.Size = new System.Drawing.Size(217, 26);
78             
this.passwordtextBox.TabIndex = 1;
79             
this.passwordtextBox.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
80             
//
81             
// button1
82             
//
83             
this.button1.Location = new System.Drawing.Point(115, 114);
84             
this.button1.Name = "button1";
85             
this.button1.Size = new System.Drawing.Size(75, 23);
86             
this.button1.TabIndex = 2;
87             
this.button1.Text = "Login";
88             
this.button1.UseVisualStyleBackColor = true;
89             
this.button1.Click += new System.EventHandler(this.button1_Click);
90             
this.button1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.button1_KeyPress);
91             
//
92             
// button2
93             
//
94             
this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
95             
this.button2.Location = new System.Drawing.Point(206, 114);
96             
this.button2.Name = "button2";
97             
this.button2.Size = new System.Drawing.Size(75, 23);
98             
this.button2.TabIndex = 3;
99             
this.button2.Text = "Exit";
100             
this.button2.UseVisualStyleBackColor = true;
101             
this.button2.Click += new System.EventHandler(this.button2_Click);
102             
//
103             
// label3
104             
//
105             
this.label3.AutoSize = true;
106             
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
107             
this.label3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
108             
this.label3.Location = new System.Drawing.Point(146, 9);
109             
this.label3.Name = "label3";
110             
this.label3.Size = new System.Drawing.Size(89, 20);
111             
this.label3.TabIndex = 0;
112             
this.label3.Text = "Login Page";
113             
this.label3.Click += new System.EventHandler(this.label1_Click);
114             
//
115             
// Login
116             
//
117             
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
119             
this.BackColor = System.Drawing.SystemColors.ActiveBorder;
120             
this.ClientSize = new System.Drawing.Size(323, 146);
121             
this.Controls.Add(this.button2);
122             
this.Controls.Add(this.button1);
123             
this.Controls.Add(this.passwordtextBox);
124             
this.Controls.Add(this.label2);
125             
this.Controls.Add(this.usernametextBox);
126             
this.Controls.Add(this.label3);
127             
this.Controls.Add(this.label1);
128             
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
129             
this.Name = "Login";
130             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
131             
this.Text = "Login";
132             
this.Load += new System.EventHandler(this.Login_Load);
133             
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Login_KeyPress);
134             
this.ResumeLayout(false);
135             
this.PerformLayout();
136
137         }
138
139         
#endregion
140
141         
private System.Windows.Forms.Label label1;
142         
private System.Windows.Forms.TextBox usernametextBox;
143         
private System.Windows.Forms.Label label2;
144         
private System.Windows.Forms.TextBox passwordtextBox;
145         
private System.Windows.Forms.Button button1;
146         
private System.Windows.Forms.Button button2;
147         
private System.Windows.Forms.Label label3;
148     }
149 }


Gõ tìm kiếm nhanh...